testing.common.w (field)

38 uses

	testing (current package)
		benchmark.go#L249: 		fmt.Fprintf(b.w, "%s--- FAIL: %s\n%s", b.chatty.prefix(), b.name, b.output)
		benchmark.go#L264: 			fmt.Fprintf(b.w, "%s--- %s: %s\n%s", b.chatty.prefix(), tag, b.name, b.output)
		benchmark.go#L277: 		fmt.Fprintf(b.w, "goos: %s\n", runtime.GOOS)
		benchmark.go#L278: 		fmt.Fprintf(b.w, "goarch: %s\n", runtime.GOARCH)
		benchmark.go#L280: 			fmt.Fprintf(b.w, "pkg: %s\n", b.importPath)
		benchmark.go#L283: 			fmt.Fprintf(b.w, "cpu: %s\n", cpu)
		benchmark.go#L715: 			w:     os.Stdout,
		benchmark.go#L728: 		main.chatty = newChattyPrinter(main.w)
		benchmark.go#L743: 				fmt.Fprintf(b.w, "%-*s\t", s.maxLen, benchName)
		benchmark.go#L751: 						w:      b.w,
		benchmark.go#L766: 				fmt.Fprintf(b.w, "%s--- FAIL: %s\n%s", b.chatty.prefix(), benchName, b.output)
		benchmark.go#L771: 				fmt.Fprintf(b.w, "%-*s\t", s.maxLen, benchName)
		benchmark.go#L776: 			fmt.Fprintln(b.w, results)
		benchmark.go#L781: 				fmt.Fprintf(b.w, "%s--- BENCH: %s\n%s", b.chatty.prefix(), benchName, b.output)
		benchmark.go#L826: 			w:       b.w,
		benchmark.go#L1007: 			w:      discard{},
		fuzz.go#L320: 			t.parent.w = captureOut
		fuzz.go#L322: 		t.w = indenter{&t.common}
		fuzz.go#L371: 			fmt.Fprintf(f.w, "%v\n", err)
		fuzz.go#L374: 				fmt.Fprintf(f.w, "Failing input written to %s\n", crashPath)
		fuzz.go#L376: 				fmt.Fprintf(f.w, "To re-run:\ngo test -run=%s/%s\n", f.name, testName)
		fuzz.go#L408: 				run(f.w, e)
		fuzz.go#L498: 			root := common{w: os.Stdout} // gather output in one place
		fuzz.go#L500: 				root.chatty = newChattyPrinter(root.w)
		fuzz.go#L532: 				f.w = indenter{&f.common}
		fuzz.go#L572: 	root := common{w: os.Stdout}
		fuzz.go#L574: 		root.w = io.Discard
		fuzz.go#L580: 		root.chatty = newChattyPrinter(root.w)
		fuzz.go#L618: 	f.w = indenter{&f.common}
		testing.go#L634: 	w           io.Writer            // For flushToParent.
		testing.go#L824: 	if c.chatty != nil && (p.w == c.chatty.w || c.chatty.json) {
		testing.go#L842: 		fmt.Fprintf(p.w, c.chatty.prefix()+format, args...)
		testing.go#L1868: 					fmt.Fprintf(root.parent.w, "cleanup panicked with %v", r)
		testing.go#L1984: 	t.w = indenter{&t.common}
		testing.go#L2466: 					w:         os.Stdout,
		testing.go#L2473: 				t.chatty = newChattyPrinter(t.w)